home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / DBaldwin / htmllite.exe / demo_src / submit.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2001-06-24  |  620 b   |  38 lines

  1. unit Submit;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   TSubmitForm = class(TForm)
  11.     ActionText: TEdit;
  12.     MethodText: TEdit;
  13.     Label1: TLabel;
  14.     Label2: TLabel;
  15.     ResultBox: TListBox;
  16.     Label3: TLabel;
  17.     Button1: TButton;
  18.     procedure Button1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   SubmitForm: TSubmitForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TSubmitForm.Button1Click(Sender: TObject);
  33. begin
  34. Close;
  35. end;
  36.  
  37. end.
  38.